home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-19 / intrlib1.zip / INTR_EMS.H < prev    next >
C/C++ Source or Header  |  1990-12-09  |  704b  |  20 lines

  1. /******************************************************************************
  2. * EMS - expand memory support routines.                          *
  3. *                                          *
  4. *                    Written by Gershon Elber,  Dec. 1990  *
  5. *******************************************************************************
  6. * History:                                      *
  7. *  9 Dec 90 - Version 1.0 by Gershon Elber.                      *
  8. ******************************************************************************/
  9.  
  10. #ifndef INTR_EMS_H
  11. #define INTR_EMS_H
  12.  
  13. IntrBType EMSDetected(void);
  14. unsigned int EMSSegment(void);
  15. int EMSAlloc(int NumPages);
  16. void *EMSMap(int EMSHandle, int LogicPageNum, int PhysicPageNum);
  17. void EMSFree(int EMSHandle);
  18.  
  19. #endif /* INTR_EMS_H */
  20.